projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ca2d34
)
(viper-setup-master-buffer): Use `mapc' rather than `mapcar'.
author
Juanma Barranquero
<lekktu@gmail.com>
Wed, 26 Sep 2007 00:18:24 +0000
(
00:18
+0000)
committer
Juanma Barranquero
<lekktu@gmail.com>
Wed, 26 Sep 2007 00:18:24 +0000
(
00:18
+0000)
lisp/emulation/viper-util.el
patch
|
blob
|
history
diff --git
a/lisp/emulation/viper-util.el
b/lisp/emulation/viper-util.el
index eebf09aed22e90b54cf60a6a380aa7b9fdc0ee8e..7073cd019dda6158b04a71079e602a1ee1de860f 100644
(file)
--- a/
lisp/emulation/viper-util.el
+++ b/
lisp/emulation/viper-util.el
@@
-1260,9
+1260,9
@@
Arguments become related buffers. This function should normally be used in
the `Local variables' section of a file."
(setq viper-related-files-and-buffers-ring
(make-ring (1+ (length other-files-or-buffers))))
- (mapc
ar
'(lambda (elt)
-
(viper-ring-insert viper-related-files-and-buffers-ring elt))
-
other-files-or-buffers)
+ (mapc '(lambda (elt)
+ (viper-ring-insert viper-related-files-and-buffers-ring elt))
+ other-files-or-buffers)
(viper-ring-insert viper-related-files-and-buffers-ring (buffer-name))
)